home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / mint / lib / mntlib44.zoo / mntlib / cfgetosp.c < prev    next >
C/C++ Source or Header  |  1994-03-01  |  258b  |  16 lines

  1. /*
  2. Public domain termios cfgetospeed() for the MiNT library
  3. 10 October 1993 entropy@terminator.rs.itd.umich.edu -- first attempt
  4. */
  5.  
  6. #include <types.h>
  7. #include <termios.h>
  8.  
  9. speed_t
  10. cfgetospeed(stp)
  11.   const struct termios *stp;
  12. {
  13.   return stp->_c_ospeed;
  14. }
  15.  
  16.